home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_015 / okidatadump / tag.asm < prev   
Assembly Source File  |  1992-05-06  |  1KB  |  64 lines

  1.  
  2. ***** printer device dependent code tag ***************************
  3.  
  4.     SECTION        printer
  5.  
  6. *---- Included files ----------------------------------------------
  7.  
  8.     INCLUDE        "exec/types.i"
  9.     INCLUDE        "exec/nodes.i"
  10.     INCLUDE        "exec/strings.i"
  11.  
  12.     INCLUDE        "devices/prtbase.i"
  13.  
  14. *---- Imported Names ----------------------------------------------
  15.  
  16.     XREF        _Init
  17.     XREF        _Expunge
  18.     XREF        _Open
  19.     XREF        _Close
  20.  
  21.     XREF        _CommandTable
  22.     XREF        _PrinterSegmentTable
  23.     XREF        _DoSpecial
  24.     XREF        _Render
  25.  
  26. *---- Exported Names ----------------------------------------------
  27.  
  28.     XDEF        _PEDData
  29.  
  30. *******************************************************************
  31.  
  32.         MOVEQ    #0,D0        ; show error for OpenLibrary()
  33.         RTS
  34.  
  35.         DC.W    1        ; Version
  36.         DC.W    0        ; Revision
  37.  
  38. _PEDData:
  39.         DC.L    printerName
  40.         DC.L    _Init
  41.         DC.L    _Expunge
  42.         DC.L    _Open
  43.         DC.L    _Close
  44.         DC.B    PPC_BWGFX    ; Printer Class black & white graphic
  45.         DC.B    PCC_BW        ; Color Class black & white
  46.         DC.B    80        ; Max Columns
  47.         DC.B    1        ; Number of Character Sets
  48.         DC.W    7        ; Number of rows
  49.         DC.L    576        ; Maximum of X dots
  50.         DC.L    0        ; Maximum of Y dots = infinite
  51.         DC.W    72        ; X Dots per inch
  52.         DC.W    72        ; Y Dots per inch
  53.         DC.L    _CommandTable    ; as defined in data.c
  54.         DC.L    _DoSpecial    ; as defined in dospecial.c
  55.         DC.L    _Render        ; as defined in render.c
  56.         DC.L    10        ; Timeout
  57.  
  58. printerName:
  59.         STRING    <'Okidata_ML92'>
  60.  
  61.         END
  62.  
  63.  
  64.